/*初始化样式*/
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	margin: 0;
	padding: 0;
	border: 0;
	overflow-x: hidden;
}

body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
p,
blockquote,
pre,
a,
address,
code,
b,
em,
img,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
footer,
header,
hgroup,
navs,
section {
	margin: 0;
	padding: 0;
	border: 0;
}

body {
	background: #fff;
	color: #333;
	position: relative;
	font: 14px/1.5 Microsoft YaHei, arial, 宋体, sans-serif;
	vertical-align: baseline;
	width: 100%;
	overflow-x: hidden;
}

a {
	text-decoration: none;
	outline: none;
	color: #333;
}

a:hover,
a:active,
a:focus {
	text-decoration: none;
	outline: none;
	color: #2f3292;
}

input {
	padding: 0;
	margin: 0;
	font-family: 'Microsoft YaHei';
}

img {
	border: none;
	background: none;
	vertical-align: middle;
}

ul,
ol,
li {
	list-style-type: none;
}

select,
input,
img,
select {
	vertical-align: middle;
}

table {
	border-collapse: collapse;
	border-spacing: 0
}

table,
th,
td {
	vertical-align: middle
}

.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	overflow: hidden;
	visibility: hidden;
}

.clearfix {
	zoom: 1
}

.clearboth {
	height: 0px;
	line-height: 0px;
	overflow: hidden;
	clear: both;
	font-size: 0px;
}

h1,
h2 {
	font-weight: bold;
}

hr {
	border: 0;
	border-top: 1px solid #ccc;
	height: 0;
}

h3,
h4,
h5,
h6 {
	font-weight: normal;
}

p {
	margin: 0;
}

/*----- Common css ------*/
.fl {
	float: left;
}

.fr {
	float: right;
}

/*flex布局*/
.flex_wrap {
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
}

/*flex布局上下对齐*/
.flex_alise {
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;

	-webkit-align-content: space-between;
	-moz-align-content: space-between;
	-ms-align-content: space-between;
	-o-align-content: space-between;
	align-content: space-between;
}

/*flex布局上下居中*/
.flex_alice {
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;

	-webkit-align-content: center;
	-moz-align-content: center;
	-ms-align-content: center;
	-o-align-content: center;
	align-content: center;
}

/*flex布局左右对齐*/
.flex_con {
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;

	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	-o-justify-content: space-between;
	justify-content: space-between;
}

/*flex布局左右居中*/
.flex_con_cen {
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;

	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
}

/**/
.max1560{
	max-width: 1660px;
	margin: 0 auto;
	padding: 0 50px;
}
.page_con_zhuti{
    max-width: 1660px;
	margin: 0 auto;
	padding: 0 50px;
}
@media(max-width:1200px) {
	.max1560 {
		padding: 0 30px;
	}
	.page_con_zhuti{
    	padding: 0 30px;
    }
}

@media(max-width:991px) {
	.max1560 {
		padding: 0 20px;
	}
	.page_con_zhuti{
    	padding: 0 20px;
    }

	body {
		padding-top: 61px;
	}
}

@media(max-width:768px) {
	.max1560 {
		padding: 0 15px;
	}
	.page_con_zhuti{
    	padding: 0 15px;
    }
}




/* 头部 */
.x-top2 {
    height: 95px;
    line-height: 95px;
}
.x-top2 .max1560{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.x-top2 .dlogo {
    width: 22%;
    height: 95px;
    line-height: 95px;
}
.x-top2 .dlogo a{
	height: 95px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.x-top2 .dlogo img{
    max-width: 100%;
}
.x-top2 .nnav {
    width: 60%;
}
.tdh{
    max-width: 15%;
    font-size: 1rem;
	font-weight: bold;
	line-height: 30px;
	color: #2f3292;
    padding-left: 42px;
    background: url(../images/img/tbdh.png) no-repeat left center;
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
@media(max-width: 1280px){
	.x-top2 .dlogo{
		width: 25.5%;
	}
    .x-top2 .nnav{
        width: 55%;
    }
    .x-menu > li > a{
        font-size: 16px;
    }
    .tdh{
        max-width: 18.6%;
        font-size: 16px;
        padding-left: 35px;
    }
}
.mc_header_1{
	display: none;
	position: fixed;
	top: 0;
	width: 100%;
	left: 0;
	z-index: 999;
}
@media (max-width:991px) {
	.mc_header_1{
		display: block;
	}
	.pc_header_1{
		display: none;
	}
}




/* 导航样式 */
.x-menu {
    width: 58.75%;
    float: left;
}

.x-menu > li {
    width: 16.66666666666%;
    margin: 0;
    text-align: center;
    float: none;
    position: relative;
}

.x-menu > li > a {
    font-size: 17px;
    color: #333333;
    line-height: 95px;
    display: block;
    font-weight: bold;
}

.x-menu > li > a:hover {
    color: #2f3292;
}

.x-menu > li.active > a {
    color: #2f3292;
}
.x-menu {
    width: 100%;
    float: none;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.x-sub-menu {
    top: 80px;
}
.x-menu .lastli {
    width: 6% !important;
}
.x-menu > li.active > a, .x-menu > li > a:hover {
}
.x-menu > li:after {
    content: '';
    position: absolute;
    z-index: 100;
    width: 100%;
    left: 0;
    height: 40px;
    opacity: 0;
    top: 100%;
}

.x-menu > li:hover .x-sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.x-sub-menu {
    position: absolute;
    z-index: 999;
    width: 120%;
    left: -10%;
    top: 105px;
    background: #fff;
    border-radius: 5px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.x-sub-menu > li > a {
    display: block;
    text-align: center;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    padding: .5em;
}

.x-sub-menu > li > a:hover {
    background: #e9eaeb;
}

.x-sub-menu:after {
    content: '';
    width: 0;
    height: 0;
    line-height: 0;
    font-size: 0;
    overflow: hidden;
    border-width: 10px;
    cursor: pointer;
    border-style: dashed dashed solid dashed;
    border-color: transparent transparent #fff transparent;
    border-top: none;
    position: absolute;
    top: -10px;
    left: 50%;
    margin-left: -10px;
    z-index: 99;
}




















/*头部*/
#pc_header {
	height: 100px;
	line-height: 100px;
	background: #fff;
}

.pc_logo {
	width: 16%;
}

.pc_logo img {
	max-width: 100%;
}

.pc_nav {
	width: 75%;
}

.pc_nav>ul {
	width: calc(100% - 50px);
}

.pc_nav>ul {
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */

	-webkit-flex-wrap: nowrap;
	-moz-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	-o-flex-wrap: nowrap;
	flex-wrap: nowrap;

	-webkit-align-content: center;
	-moz-align-content: center;
	-ms-align-content: center;
	-o-align-content: center;
	align-content: center;
}

.pc_nav>ul>li {
	width: 14.285714285%;
	float: left;
	position: relative;
	text-align: center;
}

.pc_nav>ul>li>a {
	font-size: 16px;
	line-height: 100px;
	color: #333;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pc_nav_erji_w {
	position: absolute;
	z-index: 999;
	width: 130%;
	left: -15%;
	top: 110px;
	background: #fff;
	border-radius: 5px;
	padding: 10px 0;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateY(20px);
	transform: translateY(20px);
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	box-shadow: 0 0 15px rgb(0 0 0 / 20%);
}

.pc_nav>ul>li:hover .pc_nav_erji_w {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.pc_nav>ul>li:hover>a {
	color: #2f3292;
}

.pc_nav_erji_w:after {
	content: '';
	width: 0;
	height: 0;
	line-height: 0;
	font-size: 0;
	overflow: hidden;
	border-width: 10px;
	cursor: pointer;
	border-style: dashed dashed solid dashed;
	border-color: transparent transparent #fff transparent;
	border-top: none;
	position: absolute;
	top: -10px;
	left: 50%;
	margin-left: -10px;
	z-index: 99;
}

.pc_nav_erji_li a {
	font-size: 15px;
	line-height: 2;
	padding: 5px;
	color: #333;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pc_nav_erji_li a:hover {
	background: #2f3292;
	color: #fff;
}

.pc_nav>ul>li:after {
	content: '';
	position: absolute;
	z-index: 100;
	width: 100%;
	left: 0;
	height: 40px;
	opacity: 0;
	top: 100%;
}

.pc_sousuo {
	position: relative;
	width: 40px;
}

.pc_sousuo1 {
	width: 40px;
	height: 40px;
	background: url(../images/pc_sousuo_h.png) no-repeat center;
	margin-top: 30px;
}

.pc_sousuo2 {
	position: absolute;
	right: 0;
	top: 100px;
	width: 250px;
	z-index: 999;
	background: #2f3292;
	display: none;
}

.pc_sousuo2 input {
	outline: none;
	line-height: 45px;
	width: 36px;
	background: none;
	border: 0;
	background: #0662af;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.28);
	float: left;
}

.pc_sousuo2 .pc_sousuo_con_tijiao {
	background: url(../images/pc_sousuo_b.png) no-repeat center;
	background-size: 20px;
}

.pc_sousuo2 .pc_sousuo_con_shuru {
	padding-left: 13px;
	line-height: 45px;
	width: calc(100% - 36px);
	background: none;
	border: 0;
	outline: none;
	font-size: 13px;
	color: rgba(255, 255, 255, 1);
	float: left;
}

.pc_sousuo2 .pc_sousuo_con_shuru::-webkit-autofill {
	-webkit-text-fill-color: rgba(255, 255, 255, 1) !important;
	transition: background-color 5000s ease-in-out 0s;
}

.pc_sousuo2 .pc_sousuo_con_shuru::placeholder {
	color: rgba(255, 255, 255, 1);
}

/*首页banner*/
.index_banner {
	position: relative;
	overflow: hidden;
}

.index_banner img {
	width: 100%;
}

.index_banner_yuandian {
	font-size: 0;
	text-align: center;
	position: absolute;
	left: 0;
	bottom: 4% !important;
	z-index: 99;
}

.index_banner_yuandian span {
	width: 40px;
	height: 6px;
	background: #fff;
    border-radius: 3px;
	opacity: 1;
	margin: 0 5px !important;
}

.index_banner_yuandian span.swiper-pagination-bullet-active {
	background: #2f3292;
}

@media(max-width:768px) {
	.index_banner_yuandian {
		bottom: 10px !important;
	}

	.index_banner_yuandian span {
		width: 25px;
		height: 5px;
		margin: 0 5px !important;
	}
}

/* 关于我们 */
.gywm{
    padding: 4% 0 3.5%;
    background: url(../images/img/index_gywm_bj.png) no-repeat center;
    background-size: cover;
}
.gywm_con{
    overflow: hidden;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
}
.gywm .gywm_fl{
    width: 50%;
    cursor: pointer;
    overflow: hidden;
}
.gywm .gywm_fl img{
    width: 100%;
    transition:all 0.5s; -webkit-transition:all 0.5s; -moz-transition:all 0.5s; -o-transition:all 0.5s;
}
.gywm .gywm_fl:hover img{
    transform:scale(1.1); -webkit-transform:scale(1.1); -moz-transform:scale(1.1); -o-transform:scale(1.1);-ms-transform:scale(1.1);
}
.gywm .gywm_fr{
    width: 45%;
}
.gywm .gywm_fr .gywm_frt h3{
    font-size: 4.45rem;
	font-weight: bold;
	line-height: 1;
	color: #f4f4f4;
    position: relative;
}
.gywm .gywm_fr .gywm_frt h3 span{
    position: absolute;
    left: 0;
    top: 55%;
    font-size: 1rem;
	font-weight: normal;
	line-height: 1;
	color: #686868;
}
.gywm .gywm_fr .gywm_frt h5{
    font-size: 1.5rem;
	font-weight: bold;
	line-height: 1;
	color: #000000;
	margin: 0;
}
.gywm .gywm_fr .gywm_frc{
    font-size: 16px;
	font-weight: normal;
	line-height: 1.9;
	color: #444444;
    margin-top: 5%;
    margin-bottom: 5%;
}
.gywm .gywm_fr .gywmgd{
    display: inline-block;
    font-size: 14px;
	line-height: 1;
	color: #999999;
    border-radius: 18px;
	border: solid 1px #e5e5e5;
    padding: 12px 20px;
}
.gywm .gywm_fr .gywmgd:hover{
    background: #2f3292;
    border: solid 1px #2f3292;
    color: #fff;
}
.gywm .gywm_fr .gywm_frb{
    margin-top: 3.636%;
}
.gywm .gywm_fr .gywm_frb li{
    max-width: 162px;
    width: 33.333%;
}
.gywm .gywm_fr .gywm_frb li a{
    display: block;
    max-width: 76px;
    text-align: center;
}
.gywm .gywm_fr .gywm_frb li .img{
    line-height: 3.7rem;
    border-radius: 50%;
    border: solid 1px #595959;
    width: 3.8rem;
    font-size: 0;
}
.gywm .gywm_fr .gywm_frb li .imgk{
    text-align: center;
     transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -o-transition: all 0.8s;
}
.gywm .gywm_fr .gywm_frb li .img2{
    display: none;
}
.gywm .gywm_fr .gywm_frb li h3{
    font-size: 16px;
	font-weight: normal;
	line-height: 1;
	color: #333333;
    margin-top: 14px;
}
.gywm .gywm_fr .gywm_frb li:hover .img{
    border: solid 1px #2f3292;
}
.gywm .gywm_fr .gywm_frb li:hover .imgk{
    transform: rotateY(360deg);
}
.gywm .gywm_fr .gywm_frb li:hover .img2{
    display: inline;
}
.gywm .gywm_fr .gywm_frb li:hover .img1{
    display: none;
}
.gywm .gywm_fr .gywm_frb li:hover h3{
    color: #2f3292;
}
@media(max-width:1366px){
    .gywm .gywm_fr .gywm_frt h3 span{
        font-size: 18px;
    }
}
@media(max-width: 1280px){
    .gywm .gywm_fr{
        margin-top: 0;
    }
    .gywm .gywm_fr .gywm_frt h3 span{
        font-size: 16px;
        top: 50%;
        transform: translateY(-50%);
    }
    .gywm .gywm_fr .gywm_frc{
        font-size: 14px;
        line-height: 2.2;
    }
    .gywm .gywm_fr .gywm_frb li .img{
        width: 58px;
        line-height: 56px;
    }
}
@media(max-width: 991px){
    .gywm .gywm_fl{
        width: 100%;
    }
    .gywm .gywm_fr{
        width: 100%;
        margin-top: 15px;
    }
    .gywm .gywm_fr .gywm_frt h5{
        font-size: 18px;
    }
    .gywm .gywm_fr .gywm_frc{
        margin: 15px 0;
    }
    .gywm .gywm_fr .gywm_frb{
        margin-top: 15px;
    }
    .gywm .gywm_fr .gywm_frb li .img{
        width: 78px;
        line-height: 76px;
    }
}
@media(max-width: 768px){
    .gywm{
        padding: 25px 0;
    }
    .gywm .gywm_fr .gywm_frt h3{
        font-size: 44px;
    }
    .gywm .gywm_fr .gywm_frb li a{
        max-width: 100%;
    }
    .gywm .gywm_fr .gywm_frb li .img{
        margin: 0 auto;
    }
}
/*产品中心*/
.cpzx{
    padding: 3% 0 2%;
    background-color: #f7f7f7;
}
.cpzx .cpzx_ft h3{
    font-family: Arial;
	font-size: 4.5rem;
	font-weight: bold;
	line-height: 1;
	color: rgba(0, 0, 0, 0.08);
    position: relative;
}
.cpzx .cpzx_ft h3 span{
	font-size: 1.9rem;
	font-weight: bold;
	line-height: 1;
	color: #000000;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.cpzx .cpzx_fc ul{
    font-size: 0;
    width: 60%;
}
.cpzx .cpzx_fc li{
    display: inline-block;
    width: 25%;
    max-width: 137px;
    text-align: center;
}
.cpzx .cpzx_fc li a{
    display: block;
    font-size: 17px;
	line-height:41px;
	color: #333;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    background: url(../images/img/index_nav_bj.png) no-repeat left center;
}
.cpzx .cpzx_fc li:nth-child(1) a{
    background: none;
}
.cpzx .cpzx_fc li:hover a{
    background: #2f3292;
    color: #fff;
}
.cpzx .cpzx_fc li:hover + li a{
    background: none;   
}
.cpzx .cpzx_fc .cpzxcpgd{
    font-size: 14px;
	line-height: 44px;
	color: #a8a8a8;
    width: 121px;
	border: solid 1px #dcdcdc;
    text-align: center;
}
.cpzx  .cpzxcpgd1{
    display: none;
    font-size: 14px;
	line-height: 44px;
	color: #a8a8a8;
    width: 121px;
	border: solid 1px #dcdcdc;
    text-align: center;
    margin: 0 auto;
}
.cpzx .cpzxcpgd1:hover{
    background: #2f3292;
    color: #fff;
}
.cpzx .cpzx_fc .cpzxcpgd:hover{
    background: #2f3292;
    color: #fff;
}
.cpzx .cpzx_fb{
    margin-top: 20px;
}
.cpzx .cpzx_fb ul{
    font-size: 0;
}
.cpzx .cpzx_fb li{
    display: inline-block;
    vertical-align: top;
    width: 23.5%;
    margin-right: 2%;
    margin-bottom: 2%;
    text-align: center;
}
.cpzx .cpzx_fb li:nth-child(4n){
    margin-right: 0;
}
.cpzx .cpzx_fb li .img{
    overflow: hidden;
}
.cpzx .cpzx_fb li img{
    width: 100%;
    transition:all 0.5s; -webkit-transition:all 0.5s; -moz-transition:all 0.5s; -o-transition:all 0.5s;
}
.cpzx .cpzx_fb li h3{
    font-size: 17px;
	font-weight: normal;
	line-height: 1.4;
	color: #fff;
    padding: 10px 0;
    background: #2f3292;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.cpzx .cpzx_fb li:hover img{
    transform:scale(1.1); -webkit-transform:scale(1.1); -moz-transform:scale(1.1); -o-transform:scale(1.1);-ms-transform:scale(1.1);
}
.cpzx .cpzx_fb li:hover h3{
    background-color: #2f3292;
    color: #fff;
}
@media(max-width: 1280px){
    .cpzx .cpzx_fb li h3{
        font-size: 15px;
    }
    .cpzx .cpzx_fc li a{
        font-size: 16px;
    }
}
@media(max-width: 991px){
    .cpzx .cpzx_fb li h3{
        padding: 10px 0;
    }
}
@media(max-width: 768px){
    .cpzx{
        padding: 25px 0;
    }
    .cpzx .cpzx_ft h3{
        font-size: 44px;
    }
    .cpzx .cpzx_ft h3 span{
        font-size: 18px;
    }
    .cpzx .cpzx_fc ul{
        width: 100%;
    }
    .cpzx .cpzx_fc .cpzxcpgd{
        display: none;
    }
    .cpzx  .cpzxcpgd1{
        display: block;
        margin-top: 15px;
    }
    .cpzx .cpzx_fb li{
        width: 49%;
    }
    .cpzx .cpzx_fb li:nth-child(2n){
        margin-right: 0;
    }
}
@media(max-width: 468px){
    .cpzx .cpzx_ft h3{
        font-size: 31px;
    }
    .cpzx .cpzx_fc{
        margin-top: 10px;
    }
    .cpzx .cpzx_fc li{
        width: 50%;
        max-width: 50%;
    }
    .cpzx .cpzx_fc li:nth-child(2n+1) a{
        background: none;
    }
    .cpzx .cpzx_fc li:hover a{
        background: #2f3292!important;
        color: #fff;
    }
     .cpzx .cpzx_fc li:hover + li a{
        background:none!important;
    }
    .cpzx .cpzx_fb li{
        width: 100%;
        margin-bottom: 15px;
        margin-right: 0;
    }
    .cpzx  .cpzxcpgd1{
        margin-top: 5px;
    }
}

/* 核心优势 */
.hxys{
    background: url(../images/img/index_ys_bj.png) no-repeat top center;
    background-size: cover;
    background-attachment: fixed;
    padding: 4% 0 4%;
}
.hxys .hxys_ft h3{
    font-family: Arial;
	font-size: 4.5rem;
	font-weight: bold;
	line-height: 1;
	color: rgba(255, 255, 255, 0.08);
    position: relative;
}
.hxys .hxys_ft h3 span{
	font-size: 1.9rem;
	font-weight: bold;
	line-height: 1;
	color: #ffffff;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.hxys .hxys_fc{
    max-width: 1210px;
    font-size: 17px;
	line-height: 1.8823529;
	color: #ffffff;
    margin-top: 20px;
}
.hxys .hxys_fb{
    margin-top: 3%;
}
.hxys .hxys_fb ul{
    font-size: 0;
}
.hxys .hxys_fb li{
    display: inline-block;
    vertical-align: top;
    width: 31%;
    margin-right: 3.5%;
    position: relative;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
}
.hxys .hxys_fb li:nth-child(3n){
    margin-right: 0;
}
.hxys .hxys_fb li img{
    width: 100%;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
}
.hxys .hxys_fb li:hover img{
    transform:scale(1.1); -webkit-transform:scale(1.1); -moz-transform:scale(1.1); -o-transform:scale(1.1);-ms-transform:scale(1.1);
}
.hxys .hxys_fb li .yssz{
    font-family: Arial;
	font-size: 3rem;
	font-weight: bold;
	line-height: 1;
	color: #ffffff;
    position: absolute;
    top: 14%;
    left: 6%;
    z-index: 3;
    opacity: 1;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
}
.hxys .hxys_fb li:hover .yssz1{
    opacity: 0;
}
.yssz2{
    display: none;
}
.hxys .hxys_fb li .hzyswz1{
    padding: 0 6%;
    position: absolute;
    bottom: 6%;
    width: 100%;
    opacity: 1;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
}
.hxys .hxys_fb li:hover .hzyswz1{
    opacity: 0;
}
.hxys .hxys_fb li .hzyswz1 h3{
   font-family: Arial;
	font-size: 1.8rem;
	font-weight: normal;
	line-height: 1;
	color: #ffffff;
}
.hxys .hxys_fb li .hzyswz1 h4{
   font-family: Arial;
	font-size: 1.2rem;
	font-weight: normal;
	line-height: 1;
	color: #ffffff;
    margin-top: 8px;
}
.hxys .hxys_fb li .hzyswz1 .hzyswz1h5{
    width: 100%;
    font-size: 14px;
	font-weight: normal;
	line-height: 1.428571;
	color: #ffffff;
    margin-top: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.hxys .hxys_fb li .hzyswz2{
    width: 88%;
    position: absolute;
    bottom: -90%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(47,50,146, 0.9);
    padding: 2.85rem 7.914% 3.35rem;
    transition:all 0.5s; -webkit-transition:all 0.5s; -moz-transition:all 0.5s; -o-transition:all 0.5s;
}
.hxys .hxys_fb li:hover .hzyswz2{
    bottom: 0;
}
.hxys .hxys_fb li .hzyswz2 .yssz2{
    font-family: Arial;
	font-size: 3rem;
	font-weight: bold;
	line-height: 1;
	color: #ffffff;
    display: block;
    position: static;
}
.hxys .hxys_fb li .hzyswz2 h4{
    font-size: 1.2rem;
	font-weight: bold;
	line-height: 1;
	color: #ffffff;
    margin-top: 6%;
}
.hxys .hxys_fb li .hzyswz2 .hzyswz1h5{
    font-size: 15px;
	font-weight: normal;
	line-height: 1.6;
	color: #ffffff;
    margin-top: 7%;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}
@media(max-width: 1280px){
    .hxys .hxys_fc{
        font-size: 15px;
    }
}
@media(max-width: 991px){
    .hxys .hxys_fb li .hzyswz2{
        padding: 5% 7.914% 5%;
    }
    .hxys .hxys_fb li .hzyswz2 h4{
        font-size: 15px;
    }
    .hxys .hxys_fb li .hzyswz1 h3{
        font-size: 20px;
    }
    .hxys .hxys_fb li .hzyswz1 h4{
        font-size: 16px;
    }
    .hxys .hxys_fb li .hzyswz1 .hzyswz1h5{
        font-size: 14px;
        margin-top: 10px;
    }
}
@media(max-width: 768px){
    .hxys{
        padding: 25px 0;
    }
    .hxys .hxys_ft h3{
        font-size: 44px;
    }
    .hxys .hxys_ft h3 span{
        font-size: 18px;
    }
    .hxys .hxys_fb li{
        width: 100%;
        margin-top: 5px;
        margin-right: 0!important;
        margin-bottom: 5px;
    }
    .hxys .hxys_fb li .img img{
        height: 300px;
        opacity: 0;
    }
    .hxys .hxys_fb li:nth-child(2n){
        margin-right: 0;
    }
    .hxys .hxys_fb{
        margin-top: 15px;
    }
    .hxys .hxys_fb li .hzyswz2{
        padding: 5%;
    }
    .hxys .hxys_fb li .hzyswz2 h4{
        margin-top: 10px;
    }
    .hxys .hxys_fb li .hzyswz2 .hzyswz1h5{
        margin-top: 15px;
    }
}
@media(max-width: 468px){
    .hxys .hxys_ft h3{
        font-size: 31px;
    }
    .hxys .hxys_ft h3 span{
        font-size: 18px;
    }
    .hxys .hxys_fc{
        margin-top: 10px;
    }
    
    .hxys .hxys_fb li .img img{
        height: auto;
        opacity: 1;
    }
    .hxys .hxys_fb li .hzyswz2{
        padding: 15px;
    }
    .hxys .hxys_fb li .hzyswz2 .yssz2{
        font-size: 35px;
    }
    .hxys .hxys_fb li .hzyswz2 h4{
        font-size: 16px;
    }
    .hxys .hxys_fb li .yssz{
        font-size: 35px;
    }
}
/*新闻*/
.xwzx{
    padding: 3% 0 3%;
    background-color: #f7f7f7;
}
.xwzx .xwzx_ft {
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    -ms-align-items: flex-end;
    -o-align-items: flex-end;
    align-items: flex-end;
}
.xwzx .xwzx_ft h3{
    font-family: Arial;
	font-size: 4.5rem;
	font-weight: bold;
	line-height: 1;
	color: rgba(0, 0, 0, 0.08);
    position: relative;
}
.xwzx .xwzx_ft h3 span{
	font-size: 1.9rem;
	font-weight: bold;
	line-height: 1;
	color: #000;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.xwzx .xwzx_ft .xwzxckgd{
    font-size: 14px;
    line-height: 44px;
    color: #a8a8a8;
    width: 121px;
    border: solid 1px #dcdcdc;
    text-align: center;
    margin-bottom: 0.6rem;
}
.xwzx .xwzx_ft .xwzxckgd:hover{
    background: #2f3292;
    color: #fff;
}
.xwzx .xwzxckgd1{
    font-size: 14px;
    line-height: 44px;
    color: #a8a8a8;
    width: 121px;
    border: solid 1px #dcdcdc;
    text-align: center;
    display: none;
    margin: 0 auto;
    margin-top: 15px;
}
.xwzx .xwzxckgd1:hover{
    background: #2f3292;
    color: #fff;
}
.xwzx .xwzx_fb{
    margin-top: 3%;
}
.xwzx .xwzx_fb .xwzx_fbnr li{
    width: 32%;
    border-top: 1px solid #e5e5e5;
    padding-top: 1.5%;
    margin-right: 2%;
    float: left;
}
.xwzx .xwzx_fb .xwzx_fbnr li:nth-child(3n){
    margin-right: 0;
}
.xwzx .xwzx_fb .xwzx_fbnr li h3{
    font-size: 16px;
	font-weight: normal;
	line-height: 1.4;
	color: #8d8d8d;
}
.xwzx .xwzx_fb .xwzx_fbnr li h4{
    font-size: 18px;
	font-weight: bold;
	line-height: 1.4;
	color: #000000;
    margin-top:10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.xwzx .xwzx_fb .xwzx_fbnr li h5{
    font-size: 15px;
	font-weight: normal;
	line-height: 1.7;
	color: #737373;
    margin-top: 10px;
    margin-bottom: 15px;
    display: -webkit-box;
    overflow: hidden;
    height: 51px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.xwzx .xwzx_fb .xwzx_fbnr li .img{
    border-radius: 10px;
    overflow: hidden;
}
.xwzx .xwzx_fb .xwzx_fbnr li img{
    width: 100%;
    transition:all 0.5s; -webkit-transition:all 0.5s; -moz-transition:all 0.5s; -o-transition:all 0.5s;
}
.xwzx .xwzx_fb .xwzx_fbnr li .wwbtgd{
    width: 115px;
    font-family: Arial;
	font-size: 15px;
	line-height: 1;
	color: #737373;
    margin-top: 15px;
    background: url(../images/img/index_xwzx_gdjt.png) no-repeat right center;
}
.xwzx .xwzx_fb .xwzx_fbnr li:hover img{
    transform:scale(1.1); -webkit-transform:scale(1.1); -moz-transform:scale(1.1); -o-transform:scale(1.1);-ms-transform:scale(1.1);
}
.xwzx .xwzx_fb .xwzx_fbnr li:hover h4{
    color: #2f3292;
}
.xwzx .xwzx_fb .xwzx_fbnr li:hover .wwbtgd{
    color: #2f3292;
    background: url(../images/img/index_xwzx_gdjth.png) no-repeat right center;
    animation: msClock21 1.4s linear infinite;
}
@media(max-width:991px){
    .xwzx .xwzx_ft .xwzxckgd{
        margin-bottom: 0;
    }
}
@media(max-width:768px){
    .xwzx{
        padding: 25px 0;
    }
    .xwzx .xwzx_ft h3{
        font-size: 44px;
    }
    .xwzx .xwzx_ft h3 span{
        font-size: 20px;
    }
    .xwzx .xwzx_ft .xwzxckgd{
        display: none;
    }
    .xwzx .xwzx_fb .xwzx_fbnr li{
        width: 100%;
        margin-bottom: 15px;
        padding-top: 15px;
    }
    .xwzx .xwzx_fb .xwzx_fbnr li:last-child{
        margin-bottom: 0;
    }
    .xwzx .xwzx_fb .xwzx_fbnr li h4{
        margin-top: 10px;
    }
    .xwzx .xwzx_fb .xwzx_fbnr li h5{
        margin: 10px 0;
    }
    .xwzx .xwzx_fb .xwzx_fbnr li .wwbtgd{
        margin-top: 10px;
    }
    .xwzx .xwzxckgd1{
        display: block;
    }
    .xwzx .xwzx_fb{
        margin-top: 15px;
    }
}
@media(max-width: 468px){
    .xwzx .xwzx_ft h3{
        font-size: 31px;
    }
    .xwzx .xwzx_fb .xwzx_fbnr li h4{
        font-size: 16px;
    }
}
/*左右晃动特效 */
@keyframes msClock21 {
  0%,
  70%,
  100% {
    transform: translateX(0) scale(1);
  }
  10%,
  30% {
    transform: translateX(-5px) scale(1);
  }
  20%,
  40% {
    transform: translateX(5px) scale(1);
  }
}
/* 上下抖动动画 */
@keyframes msClock2 {
  0%,
  70%,
  100% {
    transform: rotate(0) scale(1);
  }
  10%,
  30% {
    transform: rotate(-5deg) scale(1);
  }
  20%,
  40% {
    transform: rotate(5deg) scale(1);
  }
}




/*底部*/
.footer_tongyong {
	padding: 3% 0 0;
	background: #222;
}

.footer_tongyong_ft {
	overflow: hidden;
}

.footer_tongyong_ft_fl {
	width: 65%;
}

.footer_tongyong_ft_fl ul {
	overflow: hidden;
}

.footer_tongyong_ft_fl li {
	width: 25%;
	padding-right: 10px;
}

.footer_tongyong_ft_fl li h3 {
	font-size: 18px;
	color: #fff;
	line-height: 2;
	font-weight: bold;
	position: relative;
	padding-bottom: 10px;
}

.footer_tongyong_ft_fl li h3:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 20px;
	height: 3px;
	background: #fff;
}

.foot_nav_erji {
	margin-top: 15px;
}

.footer_tongyong_ft_fl li a {
	display: block;
	font-size: 16px;
	line-height: 2;
	color: #fff;
}

.footer_tongyong_ft_fr {
	overflow: hidden;
	max-width: 30%;
}

.footer_tongyong_ft_fr h3 {
	font-size: 18px;
	color: #fff;
	line-height: 2;
	font-weight: bold;
	position: relative;
	padding-bottom: 10px;
}

.footer_tongyong_ft_fr h3:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 20px;
	height: 3px;
	background: #fff;
}

.footer_tongyong_ft_fr_fc {
	font-size: 16px;
	line-height: 2;
	color: #fff;
	margin: 10px 0;
}

.footer_tongyong_ft_fr_fb {
	float: left;
}

.footer_tongyong_ft_fr_fb img {
	max-width: 110px;
}

.footer_tongyong_ft_fr_fb h4 {
	font-size: 16px;
	line-height: 2;
	color: #fff;
	margin-top: 10px;
	text-align: center;
}

.footer_tongyong_fb {
	border-top: 1px solid rgba(255, 255, 255, .5);
	margin-top: 20px;
	padding: 15px 0;
	font-size: 16px;
	line-height: 2;
	color: #fff;
}

.footer_tongyong_fb a {
	color: #fff;
}

@media(max-width:991px) {
	.footer_tongyong {
		padding: 30px 0 0;
	}

	.footer_tongyong_ft_fl {
		display: none;
	}

	.footer_tongyong_ft_fr {
		max-width: 100%;
		float: none;
	}
}






/*合作客户*/
.ny_hezuokehu{
    font-size: 0;
}
.ny_hezuokehu li{
    width:23.5%;
    margin: 1% 0;
    margin-right: 2%;
    border: 1px solid #ccc;
    display: inline-block;
    vertical-align: bottom;
}
.ny_hezuokehu li .img img{
    width: 100%;
}
.ny_hezuokehu li:nth-child(4n){
    margin-right: 0;
}
@media(max-width:768px){
    .ny_hezuokehu li{
        width: 49%;
    }
    .ny_hezuokehu li:nth-child(2n){
        margin-right: 0;
    }
}




















